home *** CD-ROM | disk | FTP | other *** search
/ Great Canadian Scientists / GCS_CD.iso / mac / PC / GCSData / intro_o.dxr / 00002_Check For System Requirements.ls < prev    next >
Encoding:
Text File  |  1996-09-01  |  424 b   |  18 lines

  1. on exitFrame
  2.   global Starter, OldColor
  3.   set Starter to 1
  4.   set the exitLock to 1
  5.   if the colorDepth < 8 then
  6.     alert("Great Canadian Scientists requires 265 colours to run.")
  7.     quit()
  8.   end if
  9.   if the quickTimePresent = 0 then
  10.     alert("Great Canadian Scientists requires QuickTime to run.")
  11.     quit()
  12.   end if
  13.   set OldColor to the colorDepth
  14.   if the colorDepth > 8 then
  15.     set the colorDepth to 8
  16.   end if
  17. end
  18.